[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Adds an item to the end of the list. This method is equivalent to calling:
| | Copy Code |
|---|
Insert(Count, item) |
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
| C# |
|---|
public override void Add(
T item
) |
| Visual Basic (Declaration) |
|---|
Public Overrides Sub Add ( _
item As T _
) |
| Visual C++ |
|---|
public:
virtual void Add (
T item
) override |
Parameters
- item
- T
The item to add to the list.
See Also